Fix error_selecting_folder_over_existing_file_dialog() never displaying message
authorTimothy Arceri <t_arceri@yahoo.com.au>
Thu, 23 May 2013 08:00:36 +0000 (18:00 +1000)
committerMatthias Clasen <mclasen@redhat.com>
Sun, 26 May 2013 04:37:23 +0000 (00:37 -0400)
https://bugzilla.gnome.org/show_bug.cgi?id=700864

gtk/gtkfilechooserdefault.c

index ee0854f3c549f98082a6b1e8f8cfd5b8d6c3b37b..1f67175e9af13f9bc5c0a23df9ec7bcaabc90512 100644 (file)
@@ -772,13 +772,11 @@ error_filename_to_long_dialog (GtkFileChooserDefault *impl)
  * the same name is already there.
  */
 static void
-error_selecting_folder_over_existing_file_dialog (GtkFileChooserDefault *impl,
-                                                 GFile                 *file)
+error_selecting_folder_over_existing_file_dialog (GtkFileChooserDefault *impl)
 {
-  error_dialog (impl,
-               _("You may only select folders.  The item that you selected is not a folder; "
-                  "try using a different item."),
-               file, NULL);
+  error_message (impl,
+                 _("You may only select folders"),
+                 _("The item that you selected is not a folder try using a different item."));
 }
 
 /* Shows an error dialog about not being able to create a filename */
@@ -5782,7 +5780,7 @@ file_exists_get_info_cb (GCancellable *cancellable,
              request_response_and_add_to_recent_list (impl);
            }
          else
-           error_selecting_folder_over_existing_file_dialog (impl, data->file);
+           error_selecting_folder_over_existing_file_dialog (impl);
        }
     }
   else if (priv->action == GTK_FILE_CHOOSER_ACTION_SAVE)